projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
126942f
)
GtkOrientable use G_PARAM_EXPLICIT_NOTIFY
author
Matthias Clasen
<mclasen@redhat.com>
Sat, 7 Jun 2014 18:08:46 +0000
(14:08 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 9 Jun 2014 17:30:54 +0000
(13:30 -0400)
This one is a little tricky, since we override this property
in many places, and you cannot add flags when overriding. So,
all places where this is overridden will have to make sure to
notify explicitly.
gtk/gtkorientable.c
patch
|
blob
|
history
diff --git
a/gtk/gtkorientable.c
b/gtk/gtkorientable.c
index 6917c4ed2cc659aaa90617a69be0ff3eca3bf296..0607211d559034c00b943e8091fc72c18fc85b7e 100644
(file)
--- a/
gtk/gtkorientable.c
+++ b/
gtk/gtkorientable.c
@@
-62,7
+62,7
@@
gtk_orientable_default_init (GtkOrientableInterface *iface)
P_("The orientation of the orientable"),
GTK_TYPE_ORIENTATION,
GTK_ORIENTATION_HORIZONTAL,
- GTK_PARAM_READWRITE));
+ GTK_PARAM_READWRITE
|G_PARAM_EXPLICIT_NOTIFY
));
}
/**